home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Magnum One
/
Magnum One (Mid-American Digital) (Disc Manufacturing).iso
/
d12
/
cc02.arc
/
CCSTRIP.C
< prev
next >
Wrap
Text File
|
1986-03-14
|
233b
|
14 lines
/* ccstrip: strip non-graphic characters */
#include <stdio.h>
main()
{
int c;
while ((c = getchar()) != EOF)
if ((c >= ' ' && c < '\177') || c == '\t' || c == '\n')
putchar(c);
exit(0);
}